home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / resc.zip / RESCONV / MAKEFILE < prev    next >
Text File  |  1992-11-06  |  509b  |  24 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !include <ntwin32.mak>
  4.  
  5. # This line allows NMAKE to work as well
  6.  
  7. all: resconv.exe
  8.  
  9. # Update the object files if necessary
  10.  
  11. input.obj: input.c
  12.     $(cc) $(cflags) $(cvars) input.c
  13.  
  14. output.obj: output.c
  15.     $(cc) $(cflags) $(cvars) output.c
  16.  
  17. resconv.obj: resconv.c
  18.     $(cc) $(cflags) $(cvars) resconv.c
  19.  
  20. resconv.exe: resconv.obj output.obj input.obj
  21.     $(link) $(conflags) -out:resconv.exe resconv.obj output.obj input.obj $(conlibs)
  22.  
  23.  
  24.